home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RTANKSRC.ZIP / DTYPES.H < prev    next >
Encoding:
Text File  |  1995-03-07  |  232 b   |  11 lines

  1. typedef unsigned char BYTE;
  2. typedef unsigned char byte;
  3. typedef unsigned short WORD;
  4. typedef signed long LONG;
  5. typedef unsigned long DWORD;
  6. typedef char * PSTR;
  7. typedef int BOOL;
  8.  
  9. #define TRUE  1
  10. #define FALSE 0
  11.